Skip to content

Commit

Permalink
Merge 0f4ef5f into 9085b4e
Browse files Browse the repository at this point in the history
  • Loading branch information
tonycoz committed Jun 3, 2021
2 parents 9085b4e + 0f4ef5f commit 504feeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Configure
Expand Up @@ -14249,7 +14249,7 @@ $cat >try.c <<EOCP
void *
thread_start(void * arg)
{
(void *) getenv("HOME");
return (void *) getenv("HOME");
}

int main() {
Expand Down Expand Up @@ -14280,7 +14280,7 @@ int main() {
exit(2);
}

exit(! strcmp(main_buffer, save_main_buffer) == 0);
exit(! (strcmp(main_buffer, save_main_buffer) == 0));
}
EOCP
val=
Expand Down

0 comments on commit 504feeb

Please sign in to comment.