From 6fc4ade2bb44a176555703ebc2dbfb54b57e1148 Mon Sep 17 00:00:00 2001 From: Alexander Belopolsky Date: Thu, 5 Aug 2010 17:34:27 +0000 Subject: 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(). --- Include/Python.h | 1 + 1 file changed, 1 insertion(+) (limited to 'Include/Python.h') diff --git a/Include/Python.h b/Include/Python.h index 972beec7cb..6fbc49c363 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" -- cgit v1.2.1