921e5a0eb4
From-SVN: r14840
18 lines
133 B
C
18 lines
133 B
C
static int i;
|
|
|
|
void
|
|
check(x)
|
|
int x;
|
|
{
|
|
if (!x)
|
|
abort();
|
|
}
|
|
|
|
main()
|
|
{
|
|
int *p = &i;
|
|
|
|
check(p != (void *)0);
|
|
exit (0);
|
|
}
|