about summary refs log tree commit diff
path: root/third_party/git/t/t4109/patch1.patch
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/t4109/patch1.patch')
-rw-r--r--third_party/git/t/t4109/patch1.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/third_party/git/t/t4109/patch1.patch b/third_party/git/t/t4109/patch1.patch
deleted file mode 100644
index 1d411fc3cc..0000000000
--- a/third_party/git/t/t4109/patch1.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-diff --git a/main.c b/main.c
-new file mode 100644
---- /dev/null
-+++ b/main.c
-@@ -0,0 +1,23 @@
-+#include <stdio.h>
-+
-+int func(int num);
-+void print_int(int num);
-+
-+int main() {
-+	int i;
-+
-+	for (i = 0; i < 10; i++) {
-+		print_int(func(i));
-+	}
-+
-+	return 0;
-+}
-+
-+int func(int num) {
-+	return num * num;
-+}
-+
-+void print_int(int num) {
-+	printf("%d", num);
-+}
-+