merge(third_party/git): Merge squashed git subtree at v2.23.0
Merge commit '1b593e1ea4' as 'third_party/git'
This commit is contained in:
commit
7ef0d62730
3629 changed files with 1139935 additions and 0 deletions
23
third_party/git/t/t4109/expect-2
vendored
Normal file
23
third_party/git/t/t4109/expect-2
vendored
Normal file
|
|
@ -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);
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue