ENH: fix up compiler id to be more robust

This commit is contained in:
Bill Hoffman
2007-05-17 10:07:51 -04:00
parent 0c7130905d
commit 871f7cf222
3 changed files with 13 additions and 6 deletions

View File

@@ -48,9 +48,5 @@ static char const info_compiler[] = "INFO:compiler["
/* Make sure the information strings are referenced. */
int main()
{
if(&info_compiler[0] != &info_platform[0])
{
return 1;
}
return 0;
return (&info_compiler[0] != &info_platform[0]);
}