blob: d55f8af1d045473e7c30aafbf12accbd4bd2bf30 [file] [log] [blame]
#include <stdio.h>
extern void common(void);
int main(int argc, char *argv[])
{
printf("hello from prog1.c\n");
common();
return 0;
}