File indexing completed on 2025-01-18 10:06:47
0001 #ifndef Py_INTERNAL_TIME_H
0002 #define Py_INTERNAL_TIME_H
0003 #ifdef __cplusplus
0004 extern "C" {
0005 #endif
0006
0007 #ifndef Py_BUILD_CORE
0008 # error "this header requires Py_BUILD_CORE define"
0009 #endif
0010
0011
0012 struct _time_runtime_state {
0013 #ifdef HAVE_TIMES
0014 int ticks_per_second_initialized;
0015 long ticks_per_second;
0016 #else
0017 int _not_used;
0018 #endif
0019 };
0020
0021
0022 #ifdef __cplusplus
0023 }
0024 #endif
0025 #endif