bos@564: $ cat hello.c bos@144: /* bos@144: * Placed in the public domain by Bryan O'Sullivan. This program is bos@144: * not covered by patents in the United States or other countries. bos@144: */ bos@144: bos@564: #include <stdio.h> bos@144: bos@144: int main(int argc, char **argv) bos@564: { bos@564: printf("once more, hello.\n"); bos@564: printf("hello, world!\"); bos@144: return 0; bos@564: } bos@564: $ cat ../my-hello/hello.c bos@144: /* bos@144: * Placed in the public domain by Bryan O'Sullivan. This program is bos@144: * not covered by patents in the United States or other countries. bos@144: */ bos@144: bos@564: #include <stdio.h> bos@144: bos@144: int main(int argc, char **argv) bos@564: { bos@564: printf("hello, world!\"); bos@564: printf("hello again!\n"); bos@144: return 0; bos@564: } bos@564: