mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
344 B
19 lines
344 B
13 years ago
|
#include <stdio.h>
|
||
|
#include "define3.h"
|
||
|
#include "define4.h"
|
||
|
|
||
|
extern void function1(void);
|
||
|
extern void function2(void);
|
||
|
extern void function3(void);
|
||
|
extern void function4(void);
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
printf("Hello from program.c\n");
|
||
|
function1();
|
||
|
function2();
|
||
|
printf("%s", STRING3);
|
||
|
printf("%s", STRING4);
|
||
|
return 0;
|
||
|
}
|