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