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>
32 lines
333 B
Plaintext
32 lines
333 B
Plaintext
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
int func(int num);
|
|
void print_int(int num);
|
|
void print_ln();
|
|
|
|
int main() {
|
|
int i;
|
|
|
|
for (i = 0; i < 10; i++) {
|
|
print_int(func(i));
|
|
}
|
|
|
|
print_ln();
|
|
|
|
return 0;
|
|
}
|
|
|
|
int func(int num) {
|
|
return num * num;
|
|
}
|
|
|
|
void print_int(int num) {
|
|
printf("%d", num);
|
|
}
|
|
|
|
void print_ln() {
|
|
printf("\n");
|
|
}
|
|
|