blob: 10c530b23f5ae54bf713be54fc32d3771d7b40a5 [file] [log] [blame]
#include <stdio.h>
extern void func3(void);
int main(int argc, char *argv[])
{
printf("Hello from subdir2/subdir3/prog3.c\n");
func3();
return 0;
}