blob: 5bb17b5db5e906b1a49c0340aef1f2c9c45761cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
extern void abort(void);
extern void exit(int);
int bar(void);
int baz(void);
struct foo {
struct foo *next;
};
struct foo *test(struct foo *node)
{
while (node) {
if (bar() && !baz())
break;
node = node->next;
}
return node;
}
int bar (void)
{
return 0;
}
int baz (void)
{
return 0;
}
int main(void)
{
struct foo a, b, *c;
a.next = &b;
b.next = (struct foo *)0;
c = test(&a);
if (c)
abort();
exit (0);
}
|