__time_t is defined as __time64_t or __time32_t, for time holder, and the macro is
/* Clock ticks macro - ANSI version */
#define CLOCKS_PER_SEC 1000
so if you want to redefine it in your code
#ifdef CLOCKS_PER_SEC
#undef CLOCKS_PER_SEC
#define CLOCKS_PER_SEC 10000000000000
#else
#define CLOCKS_PER_SEC 10000000000000
#endif