1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-11-08 18:02:23 +05:30

clock-malfunction-imitation.c: seed stdlib randomization

This commit is contained in:
Intel A80486DX2-66 2024-06-26 00:07:49 +03:00
parent c2947aee3a
commit 3165f3c358
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -167,6 +167,8 @@ void time_flow_test(time_t (*time_function)(time_t*)) {
}
int main(void) {
srand(time(NULL));
TEST_LABEL("clock_change_time");
time_flow_test(&clock_change_time);