blob: 7ec0cf1840529dcbc411f7fcc6d16054b3a66f48 [file] [log] [blame]
#include <stdio.h>
extern void foo1();
extern void foo3();
struct foo_type;
int main()
{
struct foo_type *x;
printf("In main.\n");
foo1();
foo3();
return 0;
}