2 990128-1.c from the execute part of the gcc torture suite.
11 extern int printf (const char *,...);
13 struct s
{ struct s
*n
; } *p
;
19 void sub( struct s
*p
, struct s
**pp
);
20 int look( struct s
*p
, struct s
**pp
);
23 testTortureExecute (void)
31 for ( i
= 0; i
< MAX
; i
++ ) {
44 void sub( struct s
*p
, struct s
**pp
)
46 for ( ; look( p
, pp
); ) {
54 int look( struct s
*p
, struct s
**pp
)