Skip to content

Commit

Permalink
Add missing trailing quotes.
Browse files Browse the repository at this point in the history
Add missing trailing quotes in echo lines.
  • Loading branch information
jhamby committed Oct 22, 2023
1 parent 98cfbc0 commit ba75606
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions configure.com
Expand Up @@ -4050,8 +4050,8 @@ $ WS "#include <stdlib.h>"
$ WS "#include <math.h>"
$ WS "int main()"
$ WS "{"
$ WS " long double x = NaN;
$ WS " return isnanl(x) ? EXIT_SUCCESS : EXIT_FAILURE;
$ WS " long double x = NaN;"
$ WS " return isnanl(x) ? EXIT_SUCCESS : EXIT_FAILURE;"
$ WS "}"
$ CS
$ tmp = "isnanl"
Expand All @@ -4065,8 +4065,8 @@ $ WS "#include <stdlib.h>"
$ WS "#include <math.h>"
$ WS "int main()"
$ WS "{"
$ WS " long long x = llrint(1.5);
$ WS " return x == 2 ? EXIT_SUCCESS : EXIT_FAILURE;
$ WS " long long x = llrint(1.5);"
$ WS " return x == 2 ? EXIT_SUCCESS : EXIT_FAILURE;"
$ WS "}"
$ CS
$ tmp = "llrint"
Expand All @@ -4080,8 +4080,8 @@ $ WS "#include <stdlib.h>"
$ WS "#include <math.h>"
$ WS "int main()"
$ WS "{"
$ WS " long long x = llrintl(1.5);
$ WS " return x == 2 ? EXIT_SUCCESS : EXIT_FAILURE;
$ WS " long long x = llrintl(1.5);"
$ WS " return x == 2 ? EXIT_SUCCESS : EXIT_FAILURE;"
$ WS "}"
$ CS
$ tmp = "llrintl"
Expand All @@ -4095,8 +4095,8 @@ $ WS "#include <stdlib.h>"
$ WS "#include <math.h>"
$ WS "int main()"
$ WS "{"
$ WS " long long x = llround(1.5);
$ WS " return x == 2 ? EXIT_SUCCESS : EXIT_FAILURE;
$ WS " long long x = llround(1.5);"
$ WS " return x == 2 ? EXIT_SUCCESS : EXIT_FAILURE;"
$ WS "}"
$ CS
$ tmp = "llround"
Expand All @@ -4110,8 +4110,8 @@ $ WS "#include <stdlib.h>"
$ WS "#include <math.h>"
$ WS "int main()"
$ WS "{"
$ WS " long long x = llroundl(1.5);
$ WS " return x == 2 ? EXIT_SUCCESS : EXIT_FAILURE;
$ WS " long long x = llroundl(1.5);"
$ WS " return x == 2 ? EXIT_SUCCESS : EXIT_FAILURE;"
$ WS "}"
$ CS
$ tmp = "llroundl"
Expand All @@ -4125,8 +4125,8 @@ $ WS "#include <stdlib.h>"
$ WS "#include <math.h>"
$ WS "int main()"
$ WS "{"
$ WS " double x = llroundl(1.5);
$ WS " return x == 2.0 ? EXIT_SUCCESS : EXIT_FAILURE;
$ WS " double x = llroundl(1.5);"
$ WS " return x == 2.0 ? EXIT_SUCCESS : EXIT_FAILURE;"
$ WS "}"
$ CS
$ tmp = "nearbyint"
Expand All @@ -4140,8 +4140,8 @@ $ WS "#include <stdlib.h>"
$ WS "#include <math.h>"
$ WS "int main()"
$ WS "{"
$ WS " double x = round(1.5);
$ WS " return x == 2.0 ? EXIT_SUCCESS : EXIT_FAILURE;
$ WS " double x = round(1.5);"
$ WS " return x == 2.0 ? EXIT_SUCCESS : EXIT_FAILURE;"
$ WS "}"
$ CS
$ tmp = "round"
Expand All @@ -4155,8 +4155,8 @@ $ WS "#include <stdlib.h>"
$ WS "#include <math.h>"
$ WS "int main()"
$ WS "{"
$ WS " double x = scalbn(1.0, 3);
$ WS " return x == 8.0 ? EXIT_SUCCESS : EXIT_FAILURE;
$ WS " double x = scalbn(1.0, 3);"
$ WS " return x == 8.0 ? EXIT_SUCCESS : EXIT_FAILURE;"
$ WS "}"
$ CS
$ tmp = "scalbn"
Expand All @@ -4170,8 +4170,8 @@ $ WS "#include <stdlib.h>"
$ WS "#include <math.h>"
$ WS "int main()"
$ WS "{"
$ WS " long double x = scalbn(1.0, 3);
$ WS " return x == 8.0 ? EXIT_SUCCESS : EXIT_FAILURE;
$ WS " long double x = scalbn(1.0, 3);"
$ WS " return x == 8.0 ? EXIT_SUCCESS : EXIT_FAILURE;"
$ WS "}"
$ CS
$ tmp = "scalbnl"
Expand Down Expand Up @@ -5091,9 +5091,9 @@ $ OS
$ WS "#include <sys/stat.h>"
$ WS "#include <stdio.h>"
$ WS "#if defined(__DECC) || defined(__DECCXX)"
$ WS "#include <stdlib.h>
$ WS "#include <stdlib.h>"
$ WS "#endif"
$ WS "int main() {
$ WS "int main() {"
$ WS "#''uselargefiles' _LARGEFILE"
$ WS "#ifdef _LARGEFILE"
$ WS " printf(""%d\n"", sizeof(__ino64_t));"
Expand Down

0 comments on commit ba75606

Please sign in to comment.