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, 0 insertions, 15 deletions
diff --git a/third_party/git/t/t4051/appended1.c b/third_party/git/t/t4051/appended1.c
deleted file mode 100644
index a9f56f11db..0000000000
--- a/third_party/git/t/t4051/appended1.c
+++ /dev/null
@@ -1,15 +0,0 @@
-
-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");