about summary refs log tree commit diff
path: root/third_party/git/t/t4051/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/t4051/hello.c')
-rw-r--r--third_party/git/t/t4051/hello.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/third_party/git/t/t4051/hello.c b/third_party/git/t/t4051/hello.c
new file mode 100644
index 0000000000..73e767e178
--- /dev/null
+++ b/third_party/git/t/t4051/hello.c
@@ -0,0 +1,24 @@
+
+/*
+ * Hello comment.
+ */
+static void hello(void)	// Begin of hello
+{
+	/*
+	 * Classic.
+	 */
+	putchar('H');
+	putchar('e');
+	putchar('l');
+	putchar('l');
+	putchar('o');
+	putchar(' ');
+	/* delete me from hello */
+	putchar('w');
+	putchar('o');
+	putchar('r');
+	putchar('l');
+	putchar('d');
+	putchar('.');
+	putchar('\n');
+}	// End of hello