News:

Download Pelles C here: http://www.smorgasbordet.com/pellesc/

Main Menu

time_t 64 bit

Started by Robert, February 18, 2020, 12:04:20 AM

Previous topic - Next topic

Robert

#include <time.h>
#include <stdio.h>

int main(void) {
   printf ("sizeof time_t is: %zu\n", sizeof(time_t));
   return 0;
}


#include <time.h>
#include <stdio.h>

int main(void) {
   printf ("sizeof time_t is: %zu\n", sizeof(time_t));
   return 0;
}



Compiled with /Tamd64-coff the snippet above prints 4. Microsoft, MinGW and Clang 64 bit compiles print 8.

For potential, not tomorrow not even next week, problem please see

http://en.wikipedia.org/wiki/Year_2038_problem


Pelle

I'm aware of this, but since I use an unsigned type for time_t there shouldn't be a big problem until year ~2106 (that I can think of).
Maybe I need to add a 64-bit time_t for compatibility some day, but right now I see more problems...
/Pelle