]> git.ipfire.org Git - thirdparty/git.git/blame - t/t4051/hello.c
path.c: don't call the match function without value in trie_find()
[thirdparty/git.git] / t / t4051 / hello.c
CommitLineData
d3621de7 1
eced93bc
RS
2/*
3 * Hello comment.
4 */
d3621de7
RS
5static void hello(void) // Begin of hello
6{
7 /*
8 * Classic.
9 */
10 putchar('H');
11 putchar('e');
12 putchar('l');
13 putchar('l');
14 putchar('o');
15 putchar(' ');
16 /* delete me from hello */
17 putchar('w');
18 putchar('o');
19 putchar('r');
20 putchar('l');
21 putchar('d');
22 putchar('.');
23 putchar('\n');
24} // End of hello