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