Skip to content

Commit 70c6f47

Browse files
committed
Fix TCC compilation
1 parent 69c7ceb commit 70c6f47

8 files changed

+16
-0
lines changed

tests/basic_tests.c

+2
Original file line numberDiff line numberDiff line change
@@ -116,4 +116,6 @@ int main(void) {
116116
assert(((TestCompoundLit *)compound.self)->d == 15);
117117
assert(strcmp(((TestCompoundLit *)compound.self)->str, "abc") == 0);
118118
}
119+
120+
return 0;
119121
}

tests/decl_impl.c

+2
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,6 @@ declImpl(Bar, BarImpl);
2525

2626
int main(void) {
2727
test_decl_impl();
28+
29+
return 0;
2830
}

tests/default_impl.c

+2
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,6 @@ int main(void) {
4949
assert(VTABLE(A, TestDefault).default_op == TestDefault_default_op);
5050
assert(VTABLE(B, TestDefault).default_op == custom_impl);
5151
assert(VTABLE(C, TestNoOpCustom).custom_op == custom_impl);
52+
53+
return 0;
5254
}

tests/extern_impl/test.c

+2
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,6 @@ int main(void) {
2121

2222
ENSURE_DYN_OBJ(FooImpl, Foo);
2323
ENSURE_DYN_OBJ(BarImpl, Bar);
24+
25+
return 0;
2426
}

tests/metalang99_compliant.c

+2
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,6 @@ int main(void) {
4747

4848
ENSURE_DYN_OBJ(A, Foo);
4949
ENSURE_DYN_OBJ(B, Foo);
50+
51+
return 0;
5052
}

tests/superinterfaces.c

+2
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,6 @@ int main(void) {
132132
ENSURE_DYN_OBJ(D, Foo);
133133
ENSURE_DYN_OBJ(D, Bar);
134134
}
135+
136+
return 0;
135137
}

tests/vcalls.c

+2
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,6 @@ int main(void) {
105105
}
106106

107107
#undef RVALUE
108+
109+
return 0;
108110
}

tests/version.c

+2
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,6 @@ int main(void) {
4848
#undef IFACE99_MAJOR
4949
#undef IFACE99_MINOR
5050
#undef IFACE99_PATCH
51+
52+
return 0;
5153
}

0 commit comments

Comments
 (0)