18 lines
130 B
C
18 lines
130 B
C
|
/* pr 13484 */
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int x;
|
||
|
|
||
|
void foo()
|
||
|
{
|
||
|
x++;
|
||
|
printf("This is foo\n");
|
||
|
}
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
foo();
|
||
|
return 0;
|
||
|
}
|