# HG changeset patch # User Julien Rougeron # Date 1346850188 -7200 # Node ID 94334f9a3ff3ffa1bdcbd24c77ddc3802b4c7591 # Parent 99cc040fab43d64cb1bc3317f19955f4190d618c test add diff -r 99cc040fab43 -r 94334f9a3ff3 hello.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/hello.c Wed Sep 05 15:03:08 2012 +0200 @@ -0,0 +1,12 @@ +/* + * Placed in the public domain by Bryan O'Sullivan. This program is + * not covered by patents in the United States or other countries. + */ + +#include + +int main(int argc, char **argv) +{ + printf("once more, hello.\n"); + return 0; +} \ No newline at end of file