File beautiful.patch of Package helloworld
diff --git a/src/helloworld.c b/src/helloworld.c
index b62d2d2..6806f43 100644
--- a/src/helloworld.c
+++ b/src/helloworld.c
@@ -4,5 +4,6 @@
int main (int argc, char ** argv)
{
printf("Hello, world\n");
+ printf("Life is beautiful.\n");
return EXIT_SUCCESS;
}
diff --git a/src/helloworld.c~ b/src/helloworld.c~
new file mode 100644
index 0000000..b62d2d2
--- /dev/null
+++ b/src/helloworld.c~
@@ -0,0 +1,8 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+int main (int argc, char ** argv)
+{
+ printf("Hello, world\n");
+ return EXIT_SUCCESS;
+}