summaryrefslogtreecommitdiffstats
path: root/Include/Python.h
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-08-05 17:34:27 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-08-05 17:34:27 (GMT)
commit6fc4ade2bb44a176555703ebc2dbfb54b57e1148 (patch)
treec52aa91d4f9e35bb2850ea2aea673e56eabc4ee6 /Include/Python.h
parent1c5471f319a4e5c7bbb56c7ae349b5fe455dc857 (diff)
downloadcpython-6fc4ade2bb44a176555703ebc2dbfb54b57e1148.zip
cpython-6fc4ade2bb44a176555703ebc2dbfb54b57e1148.tar.gz
cpython-6fc4ade2bb44a176555703ebc2dbfb54b57e1148.tar.bz2
Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C API
exposed in Python.h. This function is similar to POSIX gettimeofday(struct timeval *tp), but available on platforms without gettimeofday().
Diffstat (limited to 'Include/Python.h')
-rw-r--r--Include/Python.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/Python.h b/Include/Python.h
index 972beec..6fbc49c 100644
--- a/Include/Python.h
+++ b/Include/Python.h
@@ -61,6 +61,7 @@
#error "PYMALLOC_DEBUG requires WITH_PYMALLOC"
#endif
#include "pymath.h"
+#include "pytime.h"
#include "pymem.h"
#include "object.h"