mirror of
https://github.com/git/git.git
synced 2024-11-01 06:47:52 +01:00
ac2e28c0a4
Some of our tests assumed a working "patch" command to produce expected results when checking "git-apply", but some systems have broken "patch". We can compare our output with expected output that is precomputed instead to sidestep this issue. Signed-off-by: Junio C Hamano <gitster@pobox.com>
24 lines
270 B
Text
24 lines
270 B
Text
#include <stdio.h>
|
|
|
|
int func(int num);
|
|
int func2(int num);
|
|
|
|
int main() {
|
|
int i;
|
|
|
|
for (i = 0; i < 10; i++) {
|
|
printf("%d", func(i));
|
|
printf("%d", func3(i));
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int func(int num) {
|
|
return num * num;
|
|
}
|
|
|
|
int func2(int num) {
|
|
return num * num * num;
|
|
}
|
|
|