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

C: clock-malfunction-imitation.c: optimize sizeof(time(NULL))

This commit is contained in:
Intel A80486DX2-66 2024-02-21 19:11:30 +03:00
parent 96af138bb7
commit 685154e035
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -46,7 +46,7 @@ time_t clock_change_time(time_t* x) {
if (ticks_before_accident == 0) {
y = 0;
size_t max = sizeof(time(NULL)) / sizeof(int);
size_t max = sizeof(time_t) / sizeof(int);
printf("max of clock_change_time = %zu\n", max);
size_t intmax_plus_1 = (size_t) INT_MAX + 1;