1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-11-12 22:45:54 +05:30

C: clock-malfunction-imitation.c: fix syntax

This commit is contained in:
Intel A80486DX2-66 2024-02-20 22:18:40 +03:00
parent f345d55d3a
commit 96af138bb7
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -169,19 +169,19 @@ void time_flow_test(time_t (*time_function)(time_t*)) {
}
int main(void) {
TEST_LABEL("clock_change_time")
TEST_LABEL("clock_change_time");
time_flow_test(&clock_change_time);
TEST_LABEL("clock_exponential_growth")
TEST_LABEL("clock_exponential_growth");
time_flow_test(&clock_exponential_growth);
TEST_LABEL("clock_hang")
TEST_LABEL("clock_hang");
time_flow_test(&clock_hang);
TEST_LABEL("clock_overflow")
TEST_LABEL("clock_overflow");
time_flow_test(&clock_overflow);
TEST_LABEL("clock_reverse")
TEST_LABEL("clock_reverse");
time_flow_test(&clock_reverse);
return 0;