mirror of
https://github.com/atom/atom.git
synced 2026-02-16 17:45:24 -05:00
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;
|
|
}
|