git/t/t4109/expect-2
Junio C Hamano ac2e28c0a4 tests: do not rely on external "patch"
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>
2008-07-21 21:33:16 -07:00

24 lines
246 B
Plaintext

#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);
}