mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-24 16:49:18 -06:00
BUG: Use return statement instead of exit.
This commit is contained in:
@@ -6,5 +6,5 @@ int main () {
|
||||
char c[sizeof (long)];
|
||||
} u;
|
||||
u.l = 1;
|
||||
exit (u.c[sizeof (long) - 1] == 1);
|
||||
return (u.c[sizeof (long) - 1] == 1)?1:0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user