rt_gccstream/gcc/testsuite/gcc.c-torture/compile/991127-1.c

13 lines
131 B
C

extern void foo (int *);
static void bar (char *buf)
{
int a;
foo (&a);
while (a > 0) {
*buf++ = '0';
a--;
}
}