]> git.cworth.org Git - hello/blob - hello.c
Get make to generate the final binary from a .o file.
[hello] / hello.c
1 /*
2  * hello.c
3  *
4  * Placed in the public domain by Bryan O'Sullivan
5  *
6  * This program is not covered by patents in the United States or other
7  * countries.
8  */
9
10 #include <stdio.h>
11
12 int main(int argc, char **argv)
13 {
14         printf("hello, world!\");
15         return 0;
16 }