Skip to content

Commit 9eaf14c

Browse files
Add missing newline at end of file (#39)
Like the POSIX standard decrees. (It also shuts down git's complaints in diffs.)
1 parent 0b81a1e commit 9eaf14c

File tree

279 files changed

+279
-279
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

279 files changed

+279
-279
lines changed

circ_blocks/examples/C/mpc/benchmarks/biomatch/2pc_biomatch.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ int main(
3535
}
3636

3737
return best_match;
38-
}
38+
}

circ_blocks/examples/C/mpc/benchmarks/gauss/2pc_gauss.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,4 +145,4 @@ int main(__attribute__((private(0))) int a[N*N], __attribute__((private(1))) int
145145
Output OUTPUT_res;
146146
gaussj_D(INPUT_A_m.m, INPUT_B_b.b, OUTPUT_res.res);
147147
return OUTPUT_res.res[2];
148-
}
148+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
int main(__attribute__((private(0))) int a, __attribute__((private(1))) int b) {
22
return a + b;
3-
}
3+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
int main(__attribute__((private(0))) unsigned int a, __attribute__((private(1))) unsigned int b) {
22
return a + b;
3-
}
3+
}

circ_blocks/examples/C/mpc/unit_tests/arithmetic_tests/2pc_int_equals.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
bool main(__attribute__((private(0))) int a, __attribute__((private(1))) int b) {
44
return a == b;
5-
}
5+
}

circ_blocks/examples/C/mpc/unit_tests/arithmetic_tests/2pc_int_greater_equals.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
bool main(__attribute__((private(0))) int a, __attribute__((private(1))) int b) {
44
return a >= b;
5-
}
5+
}

circ_blocks/examples/C/mpc/unit_tests/arithmetic_tests/2pc_int_greater_than.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
bool main(__attribute__((private(0))) int a, __attribute__((private(1))) int b) {
44
return a > b;
5-
}
5+
}

circ_blocks/examples/C/mpc/unit_tests/arithmetic_tests/2pc_int_less_equals.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
bool main(__attribute__((private(0))) int a, __attribute__((private(1))) int b) {
44
return a <= b;
5-
}
5+
}

circ_blocks/examples/C/mpc/unit_tests/arithmetic_tests/2pc_int_less_than.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
bool main(__attribute__((private(0))) int a, __attribute__((private(1))) int b) {
44
return a < b;
5-
}
5+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
int main(__attribute__((private(0))) int a, __attribute__((private(1))) int b) {
22
return a % b;
3-
}
3+
}

0 commit comments

Comments
 (0)