diff options
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pytime.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/pytime.h b/Include/pytime.h index a0cedb20b2..7442c6fbb7 100644 --- a/Include/pytime.h +++ b/Include/pytime.h @@ -25,8 +25,8 @@ typedef struct { /* Structure used by time.get_clock_info() */ typedef struct { const char *implementation; - int is_monotonic; - int is_adjusted; + int monotonic; + int adjusted; double resolution; } _Py_clock_info_t; |