1 #ifndef Py_INTERNAL_TIME_H
2 #define Py_INTERNAL_TIME_H
3 #ifdef __cplusplus
4 extern "C" {
5 #endif
6
7 #ifndef Py_BUILD_CORE
8 # error "this header requires Py_BUILD_CORE define"
9 #endif
10
11
12 struct _time_runtime_state {
13 #ifdef HAVE_TIMES
14 int ticks_per_second_initialized;
15 long ticks_per_second;
16 #else
17 int _not_used;
18 #endif
19 };
20
21
22 #ifdef __cplusplus
23 }
24 #endif
25 #endif /* !Py_INTERNAL_TIME_H */