Compare commits

..

No commits in common. "684a21d23fcc91a1fa79ac2a0a9042437633f3e9" and "efbedff59ae1d3fd0544bc32554274829a476288" have entirely different histories.

3 changed files with 0 additions and 19 deletions

View File

@ -1,10 +1,6 @@
#include <stdio.h>
extern void message();
int main()
{
printf("\nHello World!\n");
message();
}

View File

@ -1,9 +0,0 @@
hello.exe: hello.o message.o
gcc hello.o message.o -o hello.exe
hello.o: hello.c
message.o: message.c

View File

@ -1,6 +0,0 @@
#include <stdio.h>
void message()
{
puts("Hi folk\n");
}