BUG: Use return statement instead of exit.
This commit is contained in:
parent
ba9687d5cb
commit
af81df2542
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue