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

View File

@ -6,5 +6,5 @@ int main () {
char c[sizeof (long)]; char c[sizeof (long)];
} u; } u;
u.l = 1; u.l = 1;
exit (u.c[sizeof (long) - 1] == 1); return (u.c[sizeof (long) - 1] == 1)?1:0;
} }