mirror of https://github.com/nodejs/node.git
19 lines
344 B
C
19 lines
344 B
C
|
#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;
|
||
|
}
|