about summary refs log tree commit diff
path: root/third_party/git/t/t4051/appended1.c
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/t4051/appended1.c')
-rw-r--r--third_party/git/t/t4051/appended1.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/third_party/git/t/t4051/appended1.c b/third_party/git/t/t4051/appended1.c
new file mode 100644
index 0000000000..a9f56f11db
--- /dev/null
+++ b/third_party/git/t/t4051/appended1.c
@@ -0,0 +1,15 @@
+
+int appended(void) // Begin of first part
+{
+	int i;
+	char *s = "a string";
+
+	printf("%s\n", s);
+
+	for (i = 99;
+	     i >= 0;
+	     i--) {
+		printf("%d bottles of beer on the wall\n", i);
+	}
+
+	printf("End of first part\n");