BUG: Use return statement instead of exit.

This commit is contained in:
Brad King 2004-01-21 15:08:55 -05:00
parent ba9687d5cb
commit af81df2542
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}