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, 28 insertions, 0 deletions
diff --git a/third_party/git/t/t4109/patch1.patch b/third_party/git/t/t4109/patch1.patch
new file mode 100644
index 0000000000..1d411fc3cc
--- /dev/null
+++ b/third_party/git/t/t4109/patch1.patch
@@ -0,0 +1,28 @@
+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);
++}
++